dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleLob Class / Write Method / Write(Char[],Int32,Int32) Method
An array of characters.
The zero-based byte offset in the buffer.
The number of characters to write.

In This Topic
    Write(Char[],Int32,Int32) Method
    In This Topic
    Writes a string to the current OracleLob stream, and advances the current position within this stream by the number of bytes written.
    Syntax
    'Declaration
     
    Public Overloads Sub Write( _
       ByVal buffer() As Char, _
       ByVal offset As Integer, _
       ByVal count As Integer _
    ) 
    public void Write( 
       char[] buffer,
       int offset,
       int count
    )

    Parameters

    buffer
    An array of characters.
    offset
    The zero-based byte offset in the buffer.
    count
    The number of characters to write.
    Remarks
    If the write operation is successful, the position within the stream advances by the number of bytes written.
    Example
    In the example a byte array is filled and written to a newly created OracleLob instance.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also